home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / STR#_142.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  557 b   |  17 lines

  1. What is value and/or reference semantics, and which is best in C++?
  2.  
  3. What is 'virtual data', and how-can / why-would I use it in C++?
  4.  
  5. What's the difference between virtual data and dynamic data?
  6.  
  7. Should class subobjects be ptrs to freestore allocated objs, or contained?
  8.  
  9. What are relative costs of the 3 performance hits of allocated subobjects?
  10.  
  11. What is an 'inline virtual member fn'?  Are they ever actually 'inlined'?
  12.  
  13. Sounds like I should never use reference semantics, right?
  14.  
  15. Does the poor performance of ref semantics mean I should pass-by-value?
  16.  
  17.